home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / rong.swf / scripts / %3Cdefault package%3E / CHumpExplosion.as next >
Encoding:
Text File  |  2011-06-09  |  364 b   |  13 lines

  1. function CHumpExplosion()
  2. {
  3.    this._parent._nActiveHumpExplosions = this._parent._nActiveHumpExplosions + 1;
  4.    this._color = new Color(this);
  5.    this._color.setRGB(this._hue);
  6.    if(Math.random() < 0.3)
  7.    {
  8.       this.gotoAndPlay("collapse");
  9.    }
  10. }
  11. CHumpExplosion.prototype = new MovieClip();
  12. Object.registerClass("CHumpExplosion",CHumpExplosion);
  13.